home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 69 / Cine Live 69.iso / pc / Scripts / ToolsText.k < prev   
Encoding:
Text File  |  2002-10-04  |  1.3 KB  |  74 lines

  1. module oTextPlugin is cPlugin
  2. has
  3.     release Editor:
  4.         GetIO()
  5.             do
  6.                 result := oIOTextPlugin;
  7.             end;
  8.     end;
  9. end;
  10.  
  11. release Editor:
  12.  
  13. object oIOTextLabel is "Text";
  14.  
  15. object oIOTextPlugin is cIOPlugin
  16. with
  17.     AboutDialog is cUIAboutPluginDialog
  18.     with
  19.         HelpURL is "Text/index.htm";
  20.         Label is oIOTextLabel;
  21.         Text is "Field and Text elements, events and commands.";
  22.     end;
  23.     ToolLines is [
  24.         cIOToolListLine 
  25.         with 
  26.             Expanded is true;
  27.             Label is oIOTextLabel;
  28.             Lines is [
  29.                 cIOToolLine
  30.                 with
  31.                     Words is [
  32.                         oFieldCreator
  33.                     ];
  34.                 end
  35.             ];
  36.         end
  37.     ];
  38.     ElementLines is [
  39.         cIOSeedListLine 
  40.         with 
  41.             Label is oIOTextLabel;
  42.             Lines is [
  43.                 cIOSeedLine with IO is oIOField; end,
  44.                 cIOSeedLine with IO is oIORTFText; end
  45.             ];
  46.         end
  47.     ];
  48.     EventLines is [
  49.         cIOSeedListLine 
  50.         with 
  51.             Label is oIOTextLabel;
  52.             Lines is [
  53.                 cIOSeedLine with IO is oIOHotTextEvent; end
  54.             ];
  55.         end
  56.     ];
  57.     CommandLines is [
  58.         cIOSeedListLine 
  59.         with 
  60.             Label is oIOTextLabel;
  61.             Lines is [
  62.                 cIOSeedLine with IO is oIOEditFieldCommand; end,
  63.                 cIOSeedLine with IO is oIOFieldTextCommand; end,
  64.                 cIOSeedLine with IO is oIOFieldCookieCommand; end
  65.             ];
  66.         end
  67.     ];
  68.     Openers is [
  69.         oRTFTextOpener
  70.     ];
  71. end;
  72.  
  73. end;
  74.